home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / compression / xpk / xpkfast.lha / FAST.i < prev    next >
Encoding:
Text File  |  1993-08-21  |  505 b   |  45 lines

  1.  
  2. ; global constants
  3.  
  4. HASHSIZE    equ    $14000
  5.  
  6. PACKMEM        equ    HASHSIZE
  7. UNPACKMEM    equ    0
  8.  
  9. Version        equ    1
  10. Revision    equ    0
  11. VERSIONSTR MACRO
  12.         dc.b    '1.00'
  13.     ENDM
  14. VERSIONDATE MACRO
  15.     IFD BARFLY
  16.         dstring    d
  17.     ELSE
  18.         dc.b    '20-Aug-93'
  19.     ENDC
  20.     ENDM
  21.  
  22. ResVersion    equ    0
  23.  
  24. ; FAST librarystructure
  25.         STRUCTURE    XpkFast,LIB_SIZE
  26.         ULONG    xid_SysLib
  27.         ULONG    xid_SegList
  28.         STRUCT    xid_Reserved,32
  29.         LABEL    XpkFast_SIZEOF
  30.  
  31. ; usefull makros
  32.  
  33. CALLSYS    MACRO
  34.         jsr    _LVO\1(a6)
  35.     ENDM
  36.  
  37. XLIB    MACRO
  38.         XREF    _LVO\1
  39.     ENDM
  40.  
  41. ;EVEN    MACRO
  42. ;        ds.w    0
  43. ;    ENDM
  44.  
  45.